id/email
password
forgot password
|
create account
about
|
help
|
prefs
ReadingBat
code reading practice
Java
Python
Kotlin
If Statements
→
if_stmt1
prev |
next
|
chance
def if_stmt1(x): if x > 10: return x return 3
Function Call
Return Value
if_stmt1(5)
→
if_stmt1(15)
→
if_stmt1(0)
→
if_stmt1(10)
→
if_stmt1(13)
→
if_stmt1(20)
→
if_stmt1(3)
→
Check My Answers
next
|
chance
Experiment with this code on
Gitpod.io
⬅ Back